home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / sbin / fsck.nfs < prev    next >
Text File  |  2008-10-14  |  333b  |  22 lines

  1. #! /bin/sh
  2. #
  3. # fsck.nfs
  4. #
  5. # Dummy fsck.nfs file that always returns success. We
  6. # need this for when the root file system is on NFS:
  7. # there is no way to find out if root is NFS mounted
  8. # and we really want to do a "fsck -a /".
  9. #
  10.  
  11. while :
  12. do
  13.     case "$1" in
  14.         -*) shift ;;
  15.         *) break ;;
  16.     esac
  17. done
  18.  
  19. echo "$1: NFS file system."
  20.  
  21. exit 0
  22.